home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / utility / warning.zip / D.BAT next >
DOS Batch File  |  1997-05-20  |  729b  |  42 lines

  1. @echo off
  2. rem: put this in your autoexec.bat to substitute del for d.bat:
  3. rem: DOSKEY del=$ d.bat
  4. rem: make sure d.bat is in your path if you use this
  5.  
  6. rem: Below is an example of using d.bat
  7.  
  8.     cls
  9.  
  10. if [%1] == [*.*] goto warning
  11.  
  12.     move %1 c:\temp
  13.   goto end
  14.  
  15. :warning
  16.     cls
  17.   echo.
  18.  
  19. REM: The below warning is assuming you keep the warning text in your C:\DOS
  20. REM: directory.
  21.  
  22.     warning C:\DOS
  23.   echo.
  24.   echo. You want to delete ALL the files in the directory of:
  25.   echo.
  26.   echo.
  27.     chdir
  28.   echo.
  29.   echo.
  30.   echo.
  31.   echo. Are you sure you want to do this?
  32.   echo.
  33.     pause
  34.     pause
  35.   echo. Okay...  Now the files moved to c:\temp
  36.   echo.
  37.     md\temp
  38.     move %1 c:\temp
  39.  
  40. :end
  41.  
  42.